home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 June / PCWorld_2004-06_cd.bin / software / vyzkuste / koolmoves / kmsetup.exe / {app} / Motion Scripts / Elastic / effect2.txt
Text File  |  2004-03-21  |  610b  |  27 lines

  1. // main_init function
  2.  
  3. main_init = function(mc){
  4.  subs_done = true;
  5.  bounds = mc.getBounds(mc);
  6.  disp = opposite ? $padding / 2 -bounds.xMax : - $padding / 2 - bounds.xMin; 
  7.  deg = quick_return ? deg90 : deg180;
  8. }
  9.  
  10. // main_effect function
  11.  
  12. main_effect = function(mc,frame){
  13.  mc._xscale = 100 + Math.sin (deg * (frame % effectspeed)/(effectspeed-1)) * (maxscale - 100);
  14.  mc._x = (mc._xscale - 100) / 100 * disp;  
  15.  if ((frame / effectspeed) == cycles) end_effect = true;  
  16. }
  17.  
  18. // sub_init function
  19.  
  20. sub_init = function(mc){
  21. }
  22.  
  23. // sub_effect function
  24.  
  25. sub_effect = function(mc,frame){
  26. }
  27.